home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 076-100 / disk_085 / csh / makefile < prev    next >
Makefile  |  1992-05-06  |  862b  |  42 lines

  1. ######################################################################
  2. #
  3. # Makefile to build Shell 2.06M
  4. # by Steve Drew 30-May-87
  5. #
  6. ######################################################################
  7.  
  8. OBJS    = run.o main.o comm1.o comm2.o execom.o set.o sub.o \
  9.         globals.o rawconsole.o sort.o
  10.  
  11. INCL    = shell.h
  12.  
  13. Shell    : $(OBJS)
  14.     ln  +q -m -o Shell $(OBJS) -lc
  15.  
  16. rawconsole.o : rawconsole.c $(INCL)
  17.     cc    +IShell.syms rawconsole.c
  18.  
  19. run.o   : run.c $(INCL)
  20.     cc    +HShell.syms run.c
  21.  
  22. main.o  : main.c $(INCL)
  23.     cc    +IShell.syms main.c
  24.  
  25. comm1.o    : comm1.c $(INCL)
  26.     cc    +IShell.syms comm1.c
  27.  
  28. comm2.o    : comm2.c $(INCL)
  29.     cc    +IShell.syms comm2.c
  30.  
  31. set.o    : set.c $(INCL)
  32.     cc    +IShell.syms set.c
  33.  
  34. sub.o    : sub.c $(INCL)
  35.     cc    +IShell.syms sub.c
  36.  
  37. globals.o : globals.c $(INCL)
  38.     cc    +IShell.syms globals.c
  39.  
  40. execom.o : execom.c $(INCL)
  41.     cc    +IShell.syms execom.c
  42.